Installed virtualenv and virtualenvwrapper: Python says no module named virtualenvwrapper

前端 未结 10 2095
挽巷
挽巷 2021-01-30 01:49

Lots of other threads about similar issues, but none that I could find where quite the same case as mine. So, here goes:

Things I did:

  • Ran
10条回答
  •  盖世英雄少女心
    2021-01-30 02:20

    In Ubuntu 20.xx, virtual env can be created only by specifying python executable path.

    $ which python3
    /usr/bin/python3
    $ mkvirtualenv --python=/usr/bin/python 
    

提交回复
热议问题