如何在Windows的conda环境中使用setuptools安装python命令行脚本?

时间:2019-04-26 00:37:28

标签: windows conda setuptools

如何在Windows上使用setuptools安装python命令行脚本?我在setup.py中有以下代码:

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

config = {
    ...
    'scripts': ['scripts/Mint'],
    ...
}

setup(**config)

我激活conda环境conda activate mint并运行python setup.py install。在Linux下,脚本Mint最终位于.../miniconda3/envs/mint/bin下,可以使用了。在Windows下,根本没有bin文件夹,也找不到该脚本。

0 个答案:

没有答案