Code Monkey home page Code Monkey logo

Comments (3)

dakra avatar dakra commented on August 15, 2024 2

Thanks for the info.
Do you know what we should use instead?

A PR which fixes this in a backwards compatible way is welcome.

from anaconda-mode.

shanavas786 avatar shanavas786 commented on August 15, 2024

Do you know what we should use instead?

From pypa/setuptools#917, It is pip.

A quick workaround that works with python3 (not backward compatible)

diff --git a/anaconda-mode.py b/anaconda-mode.py
index 7552f49..89d643b
--- a/anaconda-mode.py
+++ b/anaconda-mode.py
@@ -3,6 +3,8 @@ from __future__ import print_function
 import sys
 import os
 from distutils.version import LooseVersion
+import subprocess
+

 # CLI arguments.

@@ -52,13 +54,10 @@ instrument_installation()

 def install_deps():
     import site
-    import setuptools.command.easy_install
     site.addsitedir(server_directory)
-    cmd = ['--install-dir', server_directory,
-           '--site-dirs', server_directory,
-           '--always-copy','--always-unzip']
+    cmd = [sys.executable, '-m', 'pip', 'install', '--target', server_directory]
     cmd.extend(missing_dependencies)
-    setuptools.command.easy_install.main(cmd)
+    subprocess.check_call(cmd)
     instrument_installation()

 if missing_dependencies:

from anaconda-mode.

dakra avatar dakra commented on August 15, 2024

Thanks @shanavas786 I took your changes for Python 3+ installations and keep setuptools for Python2.

If someone can check the PR and verify that it works, I would merge it in master.

from anaconda-mode.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.