Send personalized cold emails.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Python 3.7 or above
- Pip (usually comes with Python)
Follow these steps to set up your development environment:
-
Clone the project
git clone https://github.com/karatugo/cold-email.git cd cold-email -
Create a virtual environment
The virtual environment is a way to keep the project's dependencies isolated from your global Python environment. Here we create a virtual environment called
env-cold-email. We're assuming you're usingvenvwhich comes preinstalled with Python 3.3+.python3 -m venv env-cold-email
-
Activate the virtual environment
On MacOS and Linux:
source env-cold-email/bin/activateOn Windows:
.\env-cold-email\Scripts\activate
-
Install dependencies
After activating the virtual environment, we can use pip to install the required dependencies. This project's dependencies are listed in the
requirements.txtfile.pip install -r requirements.txt
After installing, you can start the Jupyter notebook:
jupyter notebookThis will start the Jupyter server and open your default web browser to the Jupyter interface.
From here, you can navigate to your project notebooks and start running your code!