使用 setup.py 文件从 Github 安装代码
Install code from Github with setup.py file
我正在尝试使用来自 https://github.com/stephantul/OpenDutchWordnet 的 OpenDutchWordnet。
我已将目录克隆到我的机器上,我认为我现在应该执行 setup.py 文件。
在 Anaconda Prompt 中(来自 setup.py 所在的目录)我 运行 两者:
python setup.py
和
python3 setup.py
然而,return:
我需要做什么才能正确设置代码?
安装包 setup.py
$ python setup.py install
或
$ setup.py install
You can find more information about installing packages in Python
resources
参考文献:
我正在尝试使用来自 https://github.com/stephantul/OpenDutchWordnet 的 OpenDutchWordnet。
我已将目录克隆到我的机器上,我认为我现在应该执行 setup.py 文件。
在 Anaconda Prompt 中(来自 setup.py 所在的目录)我 运行 两者:
python setup.py
和
python3 setup.py
然而,return:
我需要做什么才能正确设置代码?
安装包 setup.py
$ python setup.py install
或
$ setup.py install
You can find more information about installing packages in Python resources
参考文献: