Commit 476be0c7 authored by remi.clement@inrae.fr's avatar remi.clement@inrae.fr
Browse files

Merge branch 'master' of https://gitlab.irstea.fr/reversaal/OhmPi into board_v4

Showing with 18 additions and 1 deletion
+18 -1
#!/bin/bash
# ensure that the libatlas-base-dev library is installed
sudo apt-get install -y libatlas-base-dev
# Create the virtual environment
python3 -m venv ohmpy
source ohmpy/bin/activate || exit 1 # NOTE: Added || exit to avoid installing requirements in system python
# Activate it
source ohmpy/bin/activate || exit 1 # NOTE: Added || exit to avoid installing requirements in system python if the virtual environment can't be loaded
# Solve issues associated to storage allocation
export CFLAGS=-fcommon
# install all required packages in the virtual environment.
pip install -r requirements.txt
......@@ -7,4 +7,4 @@ adafruit-circuitpython-tca9548a
adafruit-circuitpython-mcp230xx
gpiozero
termcolor
pandas
pyzmq
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment