Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brunocampos01/showenv
It is a tool to show detailed information about Python version, Pip version, libraries installed, O.S, and disk usage by the project.
https://github.com/brunocampos01/showenv
cli environment library pip pypi-package python python-library python3
Last synced: 4 months ago
JSON representation
It is a tool to show detailed information about Python version, Pip version, libraries installed, O.S, and disk usage by the project.
- Host: GitHub
- URL: https://github.com/brunocampos01/showenv
- Owner: brunocampos01
- License: mit
- Created: 2020-06-15T02:37:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-10T23:55:05.000Z (about 3 years ago)
- Last Synced: 2024-09-29T17:02:34.773Z (4 months ago)
- Topics: cli, environment, library, pip, pypi-package, python, python-library, python3
- Language: Python
- Homepage: https://pypi.org/project/showenv/
- Size: 51.8 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Show Env
Report of Project Environment```shell script
__
_____/ /_ ____ _ _____ ____ _ __
/ ___/ __ \/ __ \ | /| / / _ \/ __ \ | / /
(__ ) / / / /_/ / |/ |/ / __/ / / / |/ /
/____/_/ /_/\____/|__/|__/\___/_/ /_/|___/
```
It is a tool to show detailed information of:
- Python
- Pip
- Libraries
- OS
- Disk usage## Requirements
This project is tested with:| Requisite | Version |
|----------------|---------------------|
| Python | 3.9.1 |
| Pip | 21.2.4 |
| Debian distros | Ubuntu/Linux Mint |## Install
```shell script
pip install showenv
```## Usage
```shell script
cd
showenv
```## Output: Report of Project Environment
2 files generated in current project.- config_env.txt
```
OS:
Linux
Distributor ID: Ubuntu
Description: Ubuntu 19.04
Release: 19.04
Codename: discoPython Version:
Python 3.7.3Pip Version:
pip 19.1.1 from $HOME/projetos/challenges/kaggle/porto-seguro-safe-driver-prediction/src/environment/venv/lib/python3.7/site-packages/pip (python 3.7)Jupyter Version:
4.4.0--------------------------------------------------
Disk Usage:
data:
383M data/virtual env:
736M src/environment/venv/all:
1,3G .
```- struture_project.txt
```
.
├── data
│ ├── kaggle_submission.csv
│ └── raw
│ ├── datasets.zip
│ ├── sample_submission.csv
│ ├── test.csv
│ └── train.csv
├── LICENSE
├── notebooks
│ └── porto_seguro_safe_driver.ipynb
├── README.md
├── references
│ └── porto-seguro-vector-logo.png
└── src
└── environment
├── config_env.txt
├── container
│ └── Dockerfile
├── create_requirements.sh
├── create_virtual_env.sh
├── __init__.py
├── jupyter_notebook_config.py
├── makefile
├── prepare_env.py
├── README.md
├── requirements.txt
├── show_config_env.sh
├── show_struture_project.sh
├── struture_project.txt
├── test_environment.py
├── venv
└── virtualenv_requirements.txt8 directories, 24 files
```---