Skip to content

Commit

Permalink
Add script checking system is runnable in venv (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
a5kin committed Apr 30, 2018
1 parent ac42781 commit 46e5f3a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

python3 -m venv venv

activate () {
. ./venv/bin/activate
pip3 install wheel
pip3 install Cython==0.27.3
pip3 install git\+https://github.com/kivy/kivy.git
pip3 install numpy
pip3 install pycuda
pip3 install git\+https://github.com/a5kin/xentica.git
pip3 install git\+https://github.com/a5kin/moire.git
python3 game_of_life.py
}

activate

0 comments on commit 46e5f3a

Please sign in to comment.