Conda, venv, or Docker
This guide is tailored for users of IDEs like VSCode or PyCharm, detailing a straightforward method to get started with the finter library using Conda, venv, or Docker.
Last updated
Was this helpful?
This guide is tailored for users of IDEs like VSCode or PyCharm, detailing a straightforward method to get started with the finter library using Conda, venv, or Docker.
Last updated
Was this helpful?
JupyterLabs Recommended: For a seamless experience, using Jupyter Hub on the homepage is highly recommended.
Warning on Submit Pipeline Operation: Model development is currently fully supported. However, be aware that achieving full pipeline operation might encounter compatibility issues in various environments, though support for this is actively being expanded.
Create Environment: conda create --name finterenv python=3.8
Activate: conda activate finterenv
Create Environment: python -m venv finterenv
Activate:
Windows: .\finterenv\Scripts\activate
macOS/Linux: source finterenv/bin/activate
Setup: Docker can be used for containerization, with a Dockerfile specifying Python and the required packages.
With the environment ready, install finter
and essential libraries. You can adjust the list to fit your project's needs:
Create a .env
file in your project's root directory for necessary configurations, like API keys:
Once your setup is complete, you're ready to develop with finter
.