Could not find a version that satisfies the requirement

后端 未结 12 1210
耶瑟儿~
耶瑟儿~ 2020-11-29 17:34

I\'m installing several Python packages in Ubuntu 12.04 using the following requirements.txt file:

numpy>=1.8.2,<2.0.0
matplotlib>=1.3.         


        
12条回答
  •  被撕碎了的回忆
    2020-11-29 18:26

    I had installed python3 but my python in /usr/bin/python was still the old 2.7 version

    This worked ( was pyserial in my case):

    python3 -m pip install 
    

提交回复
热议问题