We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0f360 commit 8e4cb7fCopy full SHA for 8e4cb7f
dependencies.txt
@@ -0,0 +1,3 @@
1
+Flask
2
+beautifulsoup4
3
+requests
setup_env.sh
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+venv=$(which virtualenv2 2> /dev/null || which virtualenv 2> /dev/null)
4
+if [[ -z $venv ]]
5
+then
6
+ echo "No virtualenv found"
7
+ exit 0
8
+fi
9
10
+$venv env
11
+source ./env/bin/activate
12
+pip install -r dependencies.txt
13
14
+echo "env created ok"
15
+echo ""
16
17
+echo "Run '. ./env/bin/activate' to activate your virtual environment"
0 commit comments