Skip to content
Snippets Groups Projects
Commit 03cd0774 authored by dcz's avatar dcz
Browse files

Add .gitignore file and update README for virtual environment setup

parent ce29fa39
No related branches found
No related tags found
No related merge requests found
Pipeline #25114 passed
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
debug.log
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# pipenv
Pipfile.lock
# poetry
poetry.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# VS Code settings
.vscode/
\ No newline at end of file
## (Recommended) Create a Python virtual environment
It is highly recommended to use a Python virtual environment before installing COMBO. This helps to avoid dependency conflicts with other Python packages and keeps your environment clean.
You can create and activate a virtual environment using the following commands:
```bash
python3 -m venv combo-venv
source combo-venv/bin/activate
```
After activating the virtual environment, you can proceed with the installation steps below.
# Installation # Installation
Currently, COMBO is available as a git repository. In the cloned repository directory: Currently, COMBO is available as a git repository. In the cloned repository directory:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment