Skip to content

Files

Latest commit

9e8e023 · May 7, 2025

History

History
47 lines (34 loc) · 1.49 KB

README.md

File metadata and controls

47 lines (34 loc) · 1.49 KB

Formation Python

Installation

https://www.anaconda.com/download

Windows

conda create -n cours python==3.10 ipython ipython-sql jupyter notebook numpy==1.23.5 pandas pyyaml==5.4.1 pyarrow scikit-image scikit-learn matplotlib seaborn tifffile portpicker biopython flatbuffers colour pydot pygraphviz imgaug tifffile imagecodecs

conda activate cours
# conda remove -n cours --all -y

#pip install SQLAlchemy==1.4.39 sql psycopg2 cx_Oracle
pip uninstall matplotlib seaborn
pip install matplotlib seaborn opencv-python-headless

Linux

conda create -n cours python==3.10 ipython ipython-sql jupyter notebook numpy==1.23.5 pandas pyyaml==5.4.1 pyarrow scikit-image scikit-learn matplotlib seaborn tifffile portpicker biopython flatbuffers colour pydot pygraphviz imgaug tifffile imagecodecs

conda activate cours
# conda remove -n cours --all -y

#pip install SQLAlchemy==1.4.39 sql psycopg2 cx_Oracle
pip uninstall matplotlib seaborn
pip install matplotlib seaborn opencv-python-headless
# sudo apt install openjdk-8-jdk-headless
# sudo apt-get install libpq-dev python3-dev gcc
# pip install psycopg2-binary

cat << FIN_FICHIER > /etc/profile.d/java_dev.sh
#!/bin/bash
# Configuration Outils
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
export JRE_HOME=\$JAVA_HOME/jre
export PATH=\$JAVA_HOME/bin:\$PATH
FIN_FICHIER