pip install virtualenvwrapper-powershell不工作

时间:2018-05-19 16:00:46

标签: python powershell pip virtualenv

我正在尝试使用powershell创建virtualenv,但是我收到以下错误,我没有找到解决方案:

Collecting virtualenvwrapper-powershell
  Using cached https://files.pythonhosted.org/packages/f5/40/36d418b950139cd09738c0924066ef340ffd6c43f79f67c6152c56a8a628/virtualenvwrapper-powershell-12.7.8.zip
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\spajd\AppData\Local\Temp\pip-install-q84xhg3w\virtualenvwrapper-powershell\setup.py", line 76
        TOKEN_READ = 0x00020000L | 0x0008
                               ^
    SyntaxError: invalid syntax

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1

如果有人可以帮助我,我将不胜感激!

2 个答案:

答案 0 :(得分:0)

自2012年以来,模块virtualenvwrapper-powershell有点过时。错误可能是由于您机器中安装了较新的pip版本。您可能必须downgrade your pip才能安装该模块。

答案 1 :(得分:0)

语法0x00020000L仅限Python2:

$ python
Python 2.7.13 (default, Nov 24 2017, 17:33:09) 
>>> 0x00020000L
131072L

$ python3
Python 3.5.3 (default, Jan 19 2017, 14:11:04) 
>>> 0x00020000L
  File "<stdin>", line 1
    0x00020000L
              ^
SyntaxError: invalid syntax

代码显然不适用于Python3。