Skip to main content

Questions tagged [virtualenv]

virtualenv is a tool that creates sandboxed Python environments.

67 votes
7 answers
98k views

Can't install virtual interpreter in PyCharm in Linux

When I try to add virtualenv as an interpreter in PyCharm Community 2018.1.2 in Kubuntu 18.04 I get the following error: ModuleNotFoundError: No module named 'distutils.core' How can I solve this?
Hrvoje T's user avatar
  • 1,949
28 votes
7 answers
116k views

`python3.7: bad interpreter: No such file or directory`

I installed Python, pip3, and virtualenv as in this guide for TensorFlow: brew install python pip3 install -U virtualenv Then I was able to create a virtual environment with: virtualenv --system-...
emonigma's user avatar
  • 2,037
17 votes
6 answers
25k views

bash shell error: "no such file or directory"

I am trying to install Virtualenv wrapper on Ubuntu 14.04. But whenever I start a terminal, I get the error saying bash: /usr/share/virtualenvwrapper/virtualenvwrapper_lazy.sh: No such file or ...
Abhishek Singh's user avatar
15 votes
5 answers
82k views

What is the alternative for source command in cmd?

I want to run the Windows (Command Prompt) equivalent of source myvenv/bin/activate so as to activate and enter into my virtual environment.
blank_mind's user avatar
14 votes
1 answer
21k views

Create a Python 3 virtual environment

I installed python3-virtualenv on Lubuntu 15.1 using the official Ubuntu package apt-get install python3-virtualenv. The official documentation indicates that a simple virtualenv . in my project ...
Escher's user avatar
  • 339
11 votes
2 answers
5k views

Hook into "command not found" handler in Ubuntu

I want to hook into the handler for command not found wim@SDFA100461C:~$ thing No command 'thing' found, did you mean: Command 'tping' from package 'lam-runtime' (universe) Command 'thin' from ...
wim's user avatar
  • 3,197
9 votes
2 answers
3k views

What do double curly braces mean in systemd scripts?

A stackoverflow answer about running python scripts upon system startup uses {{ and }} in its syntax. What do they mean? ExecStart={{ venv_home }}/bin/fooservice --serve-in-foreground I am also not ...
user2297550's user avatar
4 votes
2 answers
13k views

Activate virtualenv using alias

I can activate my python virtual environment from it's folder by entering . bin/activate. I'd like to instead type a single word alias, such as shazam, from the home folder (or anywhere else) that ...
landrykid's user avatar
3 votes
1 answer
5k views

Python virtualenv not activating in Windows 10 Cmder

I use Cmder on windows 10 with Python 3.5 and virtualenv on my laptop and work computer just fine. Now I have a new computer running Windows 10, Python 3.5, virtualenv 15.0 and I am able to ...
Chaz's user avatar
  • 133
3 votes
2 answers
17k views

Permission Denied When Trying to Create Python3 Virtual Environment

Ubuntu 18.04 LTS I'm trying to allow users to create their own virutalenv for python3, however when trying to create said environment using a standard user account with this command:$ python3 -m venv ...
Jon's user avatar
  • 53
3 votes
1 answer
9k views

shell environment setup for virtualenv/virtualenvwrapper

The question is about shell setup for virtualenvwrapper, an extension to virtualenv (python guide). Similar questions had been asked many times but with a lot with different answers: Environment ...
hute37's user avatar
  • 101
3 votes
1 answer
661 views

macOS Catalina (10.15) not using correct Python interpreter within virtual environment

Since updating to Catalina, after activating a virtual environment, it does not affect which python interpreter is called when using the python or python3 command. I confirmed that I am still using ...
ramseylove's user avatar
3 votes
1 answer
6k views

I started virtualenv on Mac OS, then unable to deactivate it completely

I started virtualenv on my Mac OS, using the commands python -m virtualenv envsp source env/bin/activate Then it was successfully activated. Then I entered exit, and I got a response which says ...
debchakra's user avatar
3 votes
0 answers
781 views

How do I recompile Python in VirtualEnv?

I built virtualenv and it adds Python 2.7 by default in it. After reading this solution to a bug I have, it says I have to recompile Python with the option --enable-shared. So should I rm -rf Python ...
User's user avatar
  • 841
2 votes
1 answer
3k views

Error "You must 'source' the script:" while trying to ativate python virtualenv on Windows10

python 3.7.1 Windows 10 Powershell Steps taken: create folder for envs change to folder pip install virtualenv virtualenv "abc" abc\Scripts\activate This throws the error stated in the title. I have ...
bsbaixo's user avatar
  • 23

15 30 50 per page