Skip to content

Instantly share code, notes, and snippets.

@MayumyCH
Last active December 6, 2023 00:27
Show Gist options
  • Save MayumyCH/8641ce303572488239692db3a07f2334 to your computer and use it in GitHub Desktop.
Save MayumyCH/8641ce303572488239692db3a07f2334 to your computer and use it in GitHub Desktop.
Enviroment_Python

Enviroments Python

@MayumyCH
Copy link
Author

MayumyCH commented Nov 17, 2021

CREANDO ENTORNO VIRTUALES DESDE WSL

Crear un entorno

sudo python3 -m venv env

Activar entorno (S.O Basados en UNIX - Ubuntu, fedora, debian, etc)

source env/bin/activate

Instalar librerias

pip install pandas ipython

Desactivar entorno

deactivate

NOTA
Para los pasos anteriores debemos tener instalado el modulo venv; de lo contrario instalarlo de la sgte forma:

sudo apt update
sudo apt install python3.8-venv

@MayumyCH
Copy link
Author

MayumyCH commented Nov 17, 2021

ADICIONAL

snakemake

https://towardsdatascience.com/structure-up-your-data-science-project-4ee934d9ce11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment