From badb36cb9a489b0559f234151b7da34a35210e62 Mon Sep 17 00:00:00 2001 From: HelloWorldLTY <43333475+HelloWorldLTY@users.noreply.github.com> Date: Thu, 15 Aug 2024 21:50:09 -0700 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57956127..6db74ce3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,9 @@ cd ldsc In order to install the Python dependencies, you will need the [Anaconda](https://store.continuum.io/cshop/anaconda/) Python distribution and package manager. After installing Anaconda, run the following commands to create an environment with LDSC's dependencies: ``` -conda env create --file environment.yml +conda create -n ldsc python=2.7 +python -m ensurepip +conda env update --file environment.yml --name ldsc --prune source activate ldsc ```