Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Update Docs 0.0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
watchakorn-18k committed Apr 3, 2023
1 parent badceb2 commit 7c66ec4
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,16 @@ Fenv is a simple and efficient tool to help you manage your virtual environments
- Ideal for developers who work on multiple Python projects
- Add `black` for format python
- Packages can be installed and uninstalled and added to files. `requirements.txt` at the same time
- Clear packages back to the default packages
- etc

## Installer
## Install

```
pip install fenv
```

### Linux and macOS

```
pip install fenv
Expand All @@ -27,6 +35,32 @@ or
pip install --upgrade fenv
```

### Windows

If you are using Windows, you can install Fenv using pipx, which is a tool that allows you to install and run Python applications in isolated environments. This is a great way to install Fenv, as it will not interfere with any other Python applications you may have installed on your system.

**Note:** pipx only works with Python 3.6+.

First, install pipx using the following command:

```sh
py -m pip install --user pipx
```

```
py -m pipx ensurepath
```

Then, install Fenv using pipx:

```sh
pipx install fenv
```

**Note:** ensurepath ensures that the application directory is on your $PATH. You may need to restart your terminal for this update to take effect.

You may need to restart your terminal for this update to take effect.

## PyPi

```
Expand Down

0 comments on commit 7c66ec4

Please sign in to comment.