Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akibahmed229/development-of-intelligent
development of intelligent
https://github.com/akibahmed229/development-of-intelligent
data-science jupyter-notebook machine-learning metaploit natural-language-processing numpy pandas python skit-learn terraform
Last synced: 15 days ago
JSON representation
development of intelligent
- Host: GitHub
- URL: https://github.com/akibahmed229/development-of-intelligent
- Owner: akibahmed229
- Created: 2024-10-17T20:28:44.000Z (30 days ago)
- Default Branch: main
- Last Pushed: 2024-10-20T20:33:28.000Z (27 days ago)
- Last Synced: 2024-10-21T01:05:31.632Z (26 days ago)
- Topics: data-science, jupyter-notebook, machine-learning, metaploit, natural-language-processing, numpy, pandas, python, skit-learn, terraform
- Language: Jupyter Notebook
- Homepage:
- Size: 5.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
- https://pypi.org/search - search for the package you want to install in pypi
- https://search.nixos.org/packages - search for the package you want to install in nixpkgsHere’s a quick guide to using `pip` with a virtual environment:
1. **Create a Virtual Environment**:
```bash
python -m venv myenv
```2. **Activate the Environment**:
- **Linux/Mac**: `source myenv/bin/activate`
- **Windows**: `myenv\Scripts\activate`3. **Install Packages**:
```bash
pip install
```4. **List Installed Packages**:
```bash
pip list
```5. **Freeze Dependencies**:
```bash
pip freeze > requirements.txt
```6. **Install from `requirements.txt`**:
```bash
pip install -r requirements.txt
```7. **Deactivate Environment**:
```bash
deactivate
```