8000 GitHub - WeeeverAlex/ai_gym
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

WeeeverAlex/ai_gym

 
 

Repository files navigation

AIGYM

This is a package with basic AI algorithms. This package is used in some subjects at Insper.

How to setup the environment

To avoid any configuration problems, we recommend creating a virtual environment with python:

python3 -m virtualenv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt

To quit the virtual environment, type deactivate. If you already have the virtual environment configured then type source venv/bin/activate.

How to publish the package using PyPi

Change the version attribute in setup.py and then type:

python setup.py sdist
twine upload dist/*

How to upgrade the package

If you need to upgrade the package, please follow these steps:

  • change what you need in the code;
  • test it 😄 ;
  • change the setup.py file. In special, the version attribute;
  • type
python setup.py sdist
twine upload dist/*

How to install the package

pip install aigyminsper

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 90.6%
  • Python 9.4%
0