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 afd7a8e commit 46ca915Copy full SHA for 46ca915
Makefile
@@ -41,8 +41,8 @@ check-python:
41
# Check the environment, install the dependencies.
42
setup: check-node check-npm check-python
43
cd core && npm ci && cd ..
44
-ifeq ($(VIRTUAL_ENV),)
45
- echo "\n\n\033[0;31mCannot install Python dependencies. Your virtualenv is not activated.\033[0m"
+ifeq (,$(VIRTUAL_ENV)$(CONDA_PREFIX))
+ echo "\n\n\033[0;31mCannot install Python dependencies. Your virtualenv or conda env is not activated.\033[0m"
46
false
47
else
48
python -m pip install -r requirements.txt
0 commit comments