https://github.com/ggrbill/python-examples
Examples of using Python libraries
https://github.com/ggrbill/python-examples
conda-environment hacktoberfest python python-libraries
Last synced: 4 months ago
JSON representation
Examples of using Python libraries
- Host: GitHub
- URL: https://github.com/ggrbill/python-examples
- Owner: ggrbill
- License: mit
- Created: 2020-05-24T21:33:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-12T21:52:00.000Z (about 5 years ago)
- Last Synced: 2025-01-10T01:28:06.343Z (12 months ago)
- Topics: conda-environment, hacktoberfest, python, python-libraries
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Python Examples
Examples of using Python libraries.
## Setup and activate the environment
This project is based in a `conda` environment using `conda-devenv` tool. For `miniconda` package installation follow the instructions [here](https://conda.io/miniconda.html) and for `conda-devenv` installation instructions click [here](https://conda-devenv.readthedocs.io/en/latest/installation.html).
To create and activate the conda environment called `PyExamples` execute the following commands into project root folder:
```shell
$ conda devenv
$ conda activate PyExamples
```
## Running examples
To run the Python examples you must be in the `src` folder, for that execute the following commands:
```shell
$ cd src
$ python {example_filename}.py
```