Python spyder and anaconda python.exe using different versions of pythonCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?Difference between __str__ and __repr__?Use different Python version with virtualenvDoes Python have a string 'contains' substring method?

Did the Ottoman empire suppress the printing press?

How do you move up one folder in Finder?

Having decision making power over someone's assets

Should I include code in my research paper?

Chrysanthemum bejeweled with dew drops

What happens when adult Billy Batson says "Shazam"?

How to design a CMC (Common Mode Choke) footprint to allow no-pop solution

Chorophyll and photosynthesis in plants with coloured leaves

What is the parallel of Day of the Dead with Stranger things?

The three greedy pirates

Through: how to use it with subtraction of functions?

Why is the ladder of the LM always in the dark side of the LM?

To what extent would a wizard be able to combine feats to learn to mimic unknown spells?

WTB Horizon 47c - small crack in the middle of the tire

Why archangel Michael didn't save Jesus when he was crucified?

Would a carnivorous diet be able to support a giant worm?

What are the original Russian words for a prostitute?

Yet another hash table in C

Could you brine steak?

Efficiently defining a SparseArray function

Write a function

What attributes and how big would a sea creature(s) need to be able to tow a ship?

Given a 32 bit number, what is an efficient way to scale each byte by a certain factor?

Why do you use the "park" gear to park a car and not only the handbrake?



Python spyder and anaconda python.exe using different versions of python


Calling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?Difference between __str__ and __repr__?Use different Python version with virtualenvDoes Python have a string 'contains' substring method?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Trying to setup 64 bit python to work with spyder and arcpy.
I've installed anaconda for python 2.7 and have 64 bit version that when I run python.exe in the anaconda installation folder and run



import platform
platform.architecture()[0]


It shows 64bit but when I run spyder and point the python interpreter option to that python.exe and run the above commands, it says 32bit.



Sys.path for the python.exe file in the anaconda installation are:



['', 'C:UsersCHOKAppDataLocalContinuumanaconda64python27.zip', 'C:UsersCHOKAppDataLocalContinuumanaconda64DLLs', 'C:UsersCHOKAppDataLocalContinuumanaconda64lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libplat-win', 'C:UsersCHOKAppDataLocalContinuumanaconda64liblib-tk', 'C:UsersCHOKAppDataLocalContinuumanaconda64', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packages', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packagesPythonwin']



and sys.path for spyder:



['',
'C:WindowsSYSTEM32python27.zip',
'C:Python27ArcGIS10.5DLLs',
'C:Python27ArcGIS10.5lib',
'C:Python27ArcGIS10.5libplat-win',
'C:Python27ArcGIS10.5liblib-tk',
'C:Python27ArcGIS10.5',
'C:Python27ArcGIS10.5libsite-packages',
'C:Program Files (x86)ArcGISDesktop10.5bin',
'C:Program Files (x86)ArcGISDesktop10.5ArcPy',
'C:Program Files (x86)ArcGISDesktop10.5ArcToolBoxScripts',
'C:Python27ArcGIS10.5libsite-packagesIPythonextensions',
'C:UsersCHOK.ipython']



How can I make spyder use the same paths as anaconda?










share|improve this question




























    0















    Trying to setup 64 bit python to work with spyder and arcpy.
    I've installed anaconda for python 2.7 and have 64 bit version that when I run python.exe in the anaconda installation folder and run



    import platform
    platform.architecture()[0]


    It shows 64bit but when I run spyder and point the python interpreter option to that python.exe and run the above commands, it says 32bit.



    Sys.path for the python.exe file in the anaconda installation are:



    ['', 'C:UsersCHOKAppDataLocalContinuumanaconda64python27.zip', 'C:UsersCHOKAppDataLocalContinuumanaconda64DLLs', 'C:UsersCHOKAppDataLocalContinuumanaconda64lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libplat-win', 'C:UsersCHOKAppDataLocalContinuumanaconda64liblib-tk', 'C:UsersCHOKAppDataLocalContinuumanaconda64', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packages', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packagesPythonwin']



    and sys.path for spyder:



    ['',
    'C:WindowsSYSTEM32python27.zip',
    'C:Python27ArcGIS10.5DLLs',
    'C:Python27ArcGIS10.5lib',
    'C:Python27ArcGIS10.5libplat-win',
    'C:Python27ArcGIS10.5liblib-tk',
    'C:Python27ArcGIS10.5',
    'C:Python27ArcGIS10.5libsite-packages',
    'C:Program Files (x86)ArcGISDesktop10.5bin',
    'C:Program Files (x86)ArcGISDesktop10.5ArcPy',
    'C:Program Files (x86)ArcGISDesktop10.5ArcToolBoxScripts',
    'C:Python27ArcGIS10.5libsite-packagesIPythonextensions',
    'C:UsersCHOK.ipython']



    How can I make spyder use the same paths as anaconda?










    share|improve this question
























      0












      0








      0








      Trying to setup 64 bit python to work with spyder and arcpy.
      I've installed anaconda for python 2.7 and have 64 bit version that when I run python.exe in the anaconda installation folder and run



      import platform
      platform.architecture()[0]


      It shows 64bit but when I run spyder and point the python interpreter option to that python.exe and run the above commands, it says 32bit.



      Sys.path for the python.exe file in the anaconda installation are:



      ['', 'C:UsersCHOKAppDataLocalContinuumanaconda64python27.zip', 'C:UsersCHOKAppDataLocalContinuumanaconda64DLLs', 'C:UsersCHOKAppDataLocalContinuumanaconda64lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libplat-win', 'C:UsersCHOKAppDataLocalContinuumanaconda64liblib-tk', 'C:UsersCHOKAppDataLocalContinuumanaconda64', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packages', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packagesPythonwin']



      and sys.path for spyder:



      ['',
      'C:WindowsSYSTEM32python27.zip',
      'C:Python27ArcGIS10.5DLLs',
      'C:Python27ArcGIS10.5lib',
      'C:Python27ArcGIS10.5libplat-win',
      'C:Python27ArcGIS10.5liblib-tk',
      'C:Python27ArcGIS10.5',
      'C:Python27ArcGIS10.5libsite-packages',
      'C:Program Files (x86)ArcGISDesktop10.5bin',
      'C:Program Files (x86)ArcGISDesktop10.5ArcPy',
      'C:Program Files (x86)ArcGISDesktop10.5ArcToolBoxScripts',
      'C:Python27ArcGIS10.5libsite-packagesIPythonextensions',
      'C:UsersCHOK.ipython']



      How can I make spyder use the same paths as anaconda?










      share|improve this question














      Trying to setup 64 bit python to work with spyder and arcpy.
      I've installed anaconda for python 2.7 and have 64 bit version that when I run python.exe in the anaconda installation folder and run



      import platform
      platform.architecture()[0]


      It shows 64bit but when I run spyder and point the python interpreter option to that python.exe and run the above commands, it says 32bit.



      Sys.path for the python.exe file in the anaconda installation are:



      ['', 'C:UsersCHOKAppDataLocalContinuumanaconda64python27.zip', 'C:UsersCHOKAppDataLocalContinuumanaconda64DLLs', 'C:UsersCHOKAppDataLocalContinuumanaconda64lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libplat-win', 'C:UsersCHOKAppDataLocalContinuumanaconda64liblib-tk', 'C:UsersCHOKAppDataLocalContinuumanaconda64', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packages', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packageswin32lib', 'C:UsersCHOKAppDataLocalContinuumanaconda64libsite-packagesPythonwin']



      and sys.path for spyder:



      ['',
      'C:WindowsSYSTEM32python27.zip',
      'C:Python27ArcGIS10.5DLLs',
      'C:Python27ArcGIS10.5lib',
      'C:Python27ArcGIS10.5libplat-win',
      'C:Python27ArcGIS10.5liblib-tk',
      'C:Python27ArcGIS10.5',
      'C:Python27ArcGIS10.5libsite-packages',
      'C:Program Files (x86)ArcGISDesktop10.5bin',
      'C:Program Files (x86)ArcGISDesktop10.5ArcPy',
      'C:Program Files (x86)ArcGISDesktop10.5ArcToolBoxScripts',
      'C:Python27ArcGIS10.5libsite-packagesIPythonextensions',
      'C:UsersCHOK.ipython']



      How can I make spyder use the same paths as anaconda?







      python spyder






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 23:58









      AndyAndy

      537 bronze badges




      537 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55348038%2fpython-spyder-and-anaconda-python-exe-using-different-versions-of-python%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55348038%2fpython-spyder-and-anaconda-python-exe-using-different-versions-of-python%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

          밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

          1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴