Skip to content

Instantly share code, notes, and snippets.

View CoffieldWeb's full-sized avatar

Coffield Web CoffieldWeb

View GitHub Profile
@CoffieldWeb
CoffieldWeb / install_python_3-7_windows_anaconda.md
Last active October 8, 2019 23:01
Install Python 3.7 on Windows 10 using Anaconda tutorial commands

#find the installed Python version

python --version

#Find the Pip version

pip --version

#Find the Conda version

@CoffieldWeb
CoffieldWeb / index_macos_python3.md
Last active September 25, 2019 18:54
Index all drives connected to macOS with multithreaded Python 3

Index all drives connected to macOS with multithreaded Python 3

import os
import sys
from threading import  Thread
from datetime import datetime
import subprocess

dict1 = {}
@CoffieldWeb
CoffieldWeb / python_3_aws.md
Last active March 29, 2024 14:51
Install Python 3, Pip 3, and Virtualenv in AWS Amazon Linux 2

How to install python 3, pip 3, and virtualenv in AWS Amazon Linux 2:

Update All Packages

sudo yum update

Install pip 3 and python 3

sudo yum install python3 pip3

Then install virtualenv using pip3