Skip to content

vaipos/ChemoCraft-ACM-Research-2024

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

ChemoCraft-ACM-Research-2024

Step 1: Install Conda (Anaconda or Miniconda)

macOS
  1. Download and install Miniconda (lighter) or Anaconda (includes more libraries).

  2. Open a terminal and verify the installation:

    conda --version
Windows
  1. Download and install Miniconda or Anaconda.

  2. Open Anaconda Prompt and verify the installation:

    conda --version

Step 2: Create and Activate a Virtual Environment

macOS & Windows
  1. Create a virtual environment using Conda:

    conda create --name myenv python=3.x

    Replace myenv with your environment name and 3.x with the desired Python version.

  2. Activate the virtual environment:

    conda activate myenv

Step 3: Install Jupyter Notebook

  1. Install Jupyter Notebook in your Conda environment:

    conda install jupyter
  2. Launch Jupyter Notebook:

    jupyter notebook

Step 4: Install Git and Clone the Repository

macOS
  1. Install Git using Homebrew (if not installed):

    brew install git
  2. Clone the repository:

    git clone https://github.com/vaipos/ChemoCraft-ACM-Research-2024.git
Windows
  1. Download and install Git from Git's official site.

  2. Clone the repository using Git Bash or Anaconda Prompt:

    git clone https://github.com/vaipos/ChemoCraft-ACM-Research-2024.git

Step 5: Set Up Jupyter Notebook with GitHub Integration

  1. Navigate to the project directory (replace your-repo):

    cd your-repo
  2. Open Jupyter Notebook:

    jupyter notebook
  3. To sync your Jupyter notebooks with GitHub:

    • After making changes in your notebooks, save the notebook and close it.

    • Run the following Git commands to track and push your changes:

      git add .
      git commit -m "Update notebook"
      git push origin main

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published