如何在virtualenv中降級Cython?如何在virtualenv中降級Cython?
我創造這樣的:
virtualenv -p python3.4 .
pip install cython
那麼安裝的版本Cython-0.22.1.tar.gz
。 但是,我試圖在virtualenv中安裝Kivy
,顯然Cython有一個錯誤,當安裝該版本的Cython時,它不允許pip install kivy
成功完成。有些人提到你必須降級Cython,以便讓Kivy編譯。
所以,我想:
pip uninstall cython
pip install cython 0.20
這給了我:
Using cached Cython-0.22.1.tar.gz
Collecting 0.21.2
Could not find a version that satisfies the requirement 0.21.2 (from versions:)
No matching distribution found for 0.21.2
因此,似乎用Cython的舊版本是某種不可用?
那我該如何降級呢?
編輯#1:中pip --version
輸出:7.1.0
我猜你正在尋找'PIP安裝用Cython == 0.20' – cel
讓我猜猜這是什麼的,Kivy。 –