Giter Club home page Giter Club logo

c0-intro-python's Introduction

De 0 a 100 con Python y ML: Aprendizaje por Refuerzo

Refresh Anaconda

  • Crear un entorno en anaconda:

    • $ conda create -n <nombre_del_entorno> python=<python_version>
  • Activar un entorno en anaconda:

    • $ conda activate <nombre_del_entorno>
  • Desactivar un entorno en anaconda:

    • ("nombre_del_entorno") $ conda deactivate
  • Instalar un paquete o librería en anaconda (debemos tener el entorno activado)

    • ("nombre_del_entorno") $ conda install <nombre_del_paquete>
  • Activar un entorno de anaconda para usarlo dentro de un jupyter notebook (debemos tener el entorno activado y ipykernel instalado)

    • ("nombre_del_entorno") $ python -m ipykernel install --user --name <nombre_del_entorno> --display-name "Nombre en Jupyter"
  • Lanzar un jupyter notebook (debemos tener el entorno activado y el paquete jupyter notebook instalado dentro)

    • ("nombre_del_entorno") $ jupyter notebook
  • Exportar las librerías instaladas en el entorno a un archivo txt

    • ("nombre_del_entorno") $ conda export > "nombre_del_archivo".txt
  • Instalar las librerías desde un archivo .txt

    • ("nombre_del_entorno") $ conda install -r "nombre_del_archivo".txt
  • Ver las librerías instaladas dentro de un entorno

    • ("nombre_del_entorno") $ conda list
  • Ver todos los entornos que tengo creados en mi ordenador

    • $ conda env list

c0-intro-python's People

Contributors

matesanz avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.