Skip to content

Commit

Permalink
Adding back Radme and a script file
Browse files Browse the repository at this point in the history
  • Loading branch information
chalianwar committed Sep 17, 2021
1 parent ea73568 commit 8828411
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions create_env.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash
#Author: Mark Purcell (markpurcell@ie.ibm.com)

#Might need this if automating to avoid typimg 'yes' to prompt
#ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts

echo "Installing virtual environment..."
python3 -m pip install --user virtualenv

echo "Creating virtual environment..."
virtualenv venv
source venv/bin/activate

echo "Upgrading pip..."
python3 -m pip install --upgrade pip

echo "Please run 'source venv/bin/activate' to enable the virtual environment"

0 comments on commit 8828411

Please sign in to comment.