Using venv
, Python's built-in virtual environment module:
-
Open your terminal or command prompt.
-
Navigate to your project directory.
-
Run the following command to create a new virtual environment:
python -m venv your_env_name
Replace
your_env_name
with the desired name for your environment. -
Activate the environment:
- On Windows:
.\your_env_name\scripts\activate
- On macOS/Linux:
source your_env_name/bin/activate
Now, your virtual environment is created and activated. You can clone and run it on vevn
Descriptive Statistics Text Analysis(Sentiment analysis & Topic Modeling): Time Series Analysis Publisher Analysis
├── .vscode │ └── settings.json ├── .github └── workflows ├── unittests.yml ├── .gitignore ├── requirements.txt ├── README.md ├── notebooks ├──data/ ...... ├── Company_analysis.ipynb ├── __init__.py └── README.md └── scripts ├── __init__.py ├── README.md └── src ├── __init__.py └── README.md
Author: Yunus A. Hassen