在我的吐鲁晓特上安装pip时,它给了我一个错误,
Could not find a version that satisfies the requirement turicreate (from versions: )
No matching distribution found for turicreate我做了以下步骤:
conda create -n venv python=2.7 anaconda
source activate venv
pip install -U turicreate
pip install --upgrade pip
Requirement already up-to-date: pip in ./anaconda/lib/python3.5/site-packages
发布于 2018-02-06 16:51:44
尽管您使用venv创建了python=2.7虚拟环境,但是在试图升级pip时收到的消息表明您正在Python3.5中运行它;路径
./anaconda/lib/python3.5/site-packages显然是指基本的Anaconda安装,而不是您的venv虚拟环境。
考虑到这一点,您得到的错误消息并不意外,因为Turicreate是Python3.5的尚不具备:
系统需求
https://stackoverflow.com/questions/48640143
复制相似问题