Last active
June 11, 2019 12:59
-
-
Save kristoff-it/ca3c9f4de23e9a536f9c6f43e1db4598 to your computer and use it in GitHub Desktop.
Installing numpy
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
# Connect to the container. Use `docker container list` to know the container name. | |
$ docker exec -it CONTAINER_NAME bash | |
# Attach to the virtual environment. This is probably going to be streamlined in future versions. | |
$ apt-get update | |
$ apt-get install python-pip | |
$ pip install pipenv | |
$ cd /opt/redislabs/lib/modules/python3/ | |
$ pipenv shell | |
# Install your packages | |
$ pip install numpy | |
$ exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment