0

I need to install pyspark for anaconda. My machine does not have internet connection hence, this wont work. It times out.

./conda install -c conda-forge pyspark

I also tried

./conda install --offline <psyapark.tar>

it tries to go to the internet. I dont get this

I have the the source file:

pyspark-2.3.1.tar

How can I install this tar file under anaconda?

user1471980
  • 10,127
  • 48
  • 136
  • 235

1 Answers1

0

Have you tried this?

./conda install pyspark-2.3.1.tar

I also found this answer which shows you how to install to the anaconda environment using pip: installing modules to Anaconda from .tar.gz

Hope this helps.

Ethan Rogers
  • 191
  • 6