Skip to content

Latest commit

 

History

History
57 lines (37 loc) · 1.92 KB

File metadata and controls

57 lines (37 loc) · 1.92 KB

TextGPT

This readme is 99% ChatGPT, 1% me. TextGPT itself is 100% ChatGPT.

Installing Python

To install Python, Virtualenv, and pip on your Mac, you will first need to open a terminal window. To do this, you can go to the Applications folder, then the Utilities folder, and then double-click on the Terminal app.

Once you have the terminal open, you can use the following commands to install Python, Virtualenv, and pip:

Install Python:

$ brew install python

Install Virtualenv:

$ pip3 install virtualenv

Install pip:

$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python3 get-pip.py

After running these commands, Python, Virtualenv, and pip should be installed on your Mac. To verify that the installations were successful, you can run the following command to see the version numbers of each of these tools:

$ python --version
$ virtualenv --version
$ pip --version

If you see the version numbers printed out, then you have successfully installed Python, Virtualenv, and pip on your Mac.

Installing Homebrew

To install Homebrew on your Mac, you will first need to open a terminal window. To do this, you can go to the Applications folder, then the Utilities folder, and then double-click on the Terminal app.

Once you have the terminal open, you can use the following command to install Homebrew:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)""

After running this command, Homebrew should be installed on your Mac. To verify that the installation was successful, you can run the following command:

brew -v

If you see the version number of Homebrew printed out, then you have successfully installed Homebrew on your Mac. You can now use Homebrew to install other command-line tools on your Mac. For example, you can use Homebrew to install Python, Virtualenv, and pip, as described in the previous answer.