File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 3
3
:: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
4
4
:: for creating and using Python virtual environments.
5
5
6
- python -m pip install --upgrade virtualenvwrapper-win
6
+ python -m pip install --upgrade pip
7
+ python -m pip install virtualenvwrapper-win --force-reinstall
7
8
echo :
8
9
echo :
9
10
echo : *** You may now use virtualenv commands in your command shell. ***
Original file line number Diff line number Diff line change 7
7
[[ $0 != " $BASH_SOURCE " ]] && sourced=1 || sourced=0
8
8
if [ $sourced = 1 ]
9
9
then
10
- python -m pip install --upgrade virtualenv
11
- python -m pip install --upgrade virtualenvwrapper
10
+ python -m pip install --upgrade pip
11
+ python -m pip install virtualenvwrapper --force-reinstall
12
12
export WORKON_HOME=$HOME /.virtualenvs
13
13
source ` which virtualenvwrapper.sh`
14
14
echo " "
You can’t perform that action at this time.
0 commit comments