Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change bash_profile to bashrc for Linux virtualenvwrapper #164

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions website/_containers/begin/2013-10-30-setup-your-machine.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ For Fedora/RHEL/CentOS:
```bash
$ sudo pip install virtualenvwrapper
$ export WORKON_HOME=~/Envs
$ echo 'export WORKON_HOME=~/Envs' >> ~/.bash_profile
$ echo 'source /usr/local/bin/virtualenvwrapper.sh' >> ~/.bash_profile
$ echo 'export WORKON_HOME=~/Envs' >> ~/.bashrc
$ echo 'source /usr/local/bin/virtualenvwrapper.sh' >> ~/.bashrc
$ mkdir -p $WORKON_HOME
$ source ~/.bash_profile
$ source ~/.bashrc
```

For Debian/Ubuntu:
Expand All @@ -174,10 +174,10 @@ For Debian/Ubuntu:
```bash
$ sudo pip install virtualenvwrapper
$ export WORKON_HOME=~/Envs
$ echo 'export WORKON_HOME=~/Envs' >> ~/.bash_profile
$ echo 'source /etc/bash_completion.d/virtualenvwrapper' >> ~/.bash_profile
$ echo 'export WORKON_HOME=~/Envs' >> ~/.bashrc
$ echo 'source /etc/bash_completion.d/virtualenvwrapper' >> ~/.bashrc
$ mkdir -p $WORKON_HOME
$ source ~/.bash_profile
$ source ~/.bashrc
```

<hr/>
Expand Down