我目前正在使用WinPython 2.7进行项目,我需要安装以下存储库中的SFrame包:
https://github.com/turi-code/SFrame
我已经下载了名为SFrame-master.zip的zip文件,并将其安装到我正在使用的目录中。
之后,在Spyder中,我选择了菜单Tools和选项Open Command提示符,然后我转到了zip文件的文件夹>
cd目录......
然后我输入以下命令:
pip install SFrame-master.zip
但出现以下错误:
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 18, in <module>
IOError: [Errno 2] No such file or directory: 'c:\\users\\myFolder\\appdata\\local\\temp\\pip-axu5cu-build\\setup.py'
当我打开一个文件时:
import sframe
它无法识别它,所以问题是如何在不使用github链接的情况下从Python中的zip文件安装包?
由于