Skip to content

mcherel/PythonForData42

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PythonForData42

FLAKE8

pip uninstall flake8
pip install flake8

Determine the installation path: Confirm the path where flake8 is installed:

ls ~/.local/bin | grep flake8

Add to PATH: If flake8 is located in ~/.local/bin, you can add this directory to your PATH. Open your shell configuration file (.bashrc, .zshrc, etc.) and add the following line:

export PATH=$PATH:~/.local/bin

Reload the shell configuration: After updating your configuration file, reload it:

source ~/.bashrc  # or source ~/.zshrc

Verify: Check if flake8 is now accessible:

    flake8 --version

If it’s still not working, you can always use flake8 as a Python module to lint your files:

python -m flake8 ex00/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages