Last active
November 28, 2018 09:02
-
-
Save fhoering/7b56847f75e0779c7e862d598d95a4d5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python3.6 -m venv venv | |
source venv/bin/activate | |
mkdir -p userlib/userlib | |
echo -n > userlib/__init__.py | |
echo -n > userlib/userlib/__init__.py | |
echo -n > userlib/userlib/startup.py | |
echo "import setuptools | |
setuptools.setup( | |
name='userlib', | |
version='0.0.1', | |
packages=setuptools.find_packages()) | |
" >> userlib/setup.py | |
pip install pex==1.5.2 numpy==1.15.4 pyspark==2.3.2 | |
pip install -e userlib |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment