You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# virtualenv is a bit nicer for setting up virtual environment, since it will provide up-to-date versions of
17
+
# pip/setuptools/wheel which basic `python3 -m venv venv` won't
18
+
python2 -m pip install --user virtualenv
19
+
python3 -m pip install --user virtualenv
20
+
21
+
# venv is required for installation of poetry or pipenv (I forgot which)
22
+
sudo apt-get install -y python3-venv
23
+
24
+
# We're install poetry with pip instead of the recommended way, since the recommended way
25
+
# caused some problem since `poetry run` gives output like:
26
+
#
27
+
# /root/.poetry/lib/poetry/_vendor/py2.7/subprocess32.py:149: RuntimeWarning: The _posixsubprocess module is not being used. Child process reliability may suffer if your program uses threads.
28
+
# "program uses threads.", RuntimeWarning)
29
+
# LGTM_PYTHON_SETUP_VERSION=The currently activated Python version 2.7.18 is not supported by the project (^3.5). Trying to find and use a compatible version. Using python3 (3.8.2) 3
0 commit comments