Anaconda

fresh windows 10, fresh anaconda, error 404

房东的猫 提交于 2019-12-24 08:40:30
问题 On a new PC, new Windows 10 install, installed 64 bit anaconda from https://www.anaconda.com/download/ from start menu, launch "Jupyter Notebook" console reports Could not open static file '' and a large number of 404 GET /static/..... and the browser displays a blank page. I'm suspecting the install instructions is missing something. Any suggestions? btw, installed for single user ... got the above restored windows to a fresh windows, installed anaconda for all users, same issue. 来源: https:/

Installing Tensorflow on windows Anaconda2

感情迁移 提交于 2019-12-24 08:23:07
问题 I am trying to install tensorflow on Ananconda2 in windows 64 bit. I've tried the following steps: conda create --name tensorflow python=3.5 activate tensorflow conda install -c conda-forge tensorflow Tensorflow got installed successfully and i could check that in Anaconda prompt. However, when I open my python2 Jupyter notebook and try with the following: import tensorflow as tf I get an error says "module tensorflow is not found". Could you please help! 回答1: Solution:- (Note:- This will

Tensorflow instalation with anaconda3 python 3.5 got 'Read timed out error"

为君一笑 提交于 2019-12-24 08:07:10
问题 I'm trying to install tensorflow-gpu using python3.6 and anaconda 3 I'm following the instalation steps in the following link https://www.tensorflow.org/install/install_windows 1- I have Createed a conda environment named tensorflow by invoking the following command: C:> conda create -n tensorflow python=3.6 2- then Activated the conda environment by issuing the following command: C:> activate tensorflow (tensorflow)C:> but comming for the final step to install TensorFlow inside my conda

Install opencv in anaconda3

ⅰ亾dé卋堺 提交于 2019-12-24 07:33:18
问题 Hello guys i ve just installed anaconda3 in windows 8.1 and opencv 2.4.13 and 3.1.0/ Ive copied from the file c:/..../opencv/build/python/2.7/x64/cv2.pyd and i pasted it to C:\Users.....\Anaconda3\Lib\site-packages. I ve pasted both for opencv 2.4.13 as cv2.pyd and for opencv 3.1.0 as cv2(3)pyd in order to change it when i want to use any of them. My system is 64-bit and i use jupyter notebook. When i run the command import cv2 it write me ImportError Traceback (most recent call last) in () -

Unable to upgrade Conda and install packages using Conda

前提是你 提交于 2019-12-24 07:12:10
问题 In my windows10 environment I am unable to upgrade conda using following command conda update conda My anaconda and python version (base) C:\Users\naseer>conda --version conda 4.5.3 (base) C:\Users\naseer>python --version Python 3.6.4 :: Anaconda, Inc. following is my error log (base) C:\Users\naseer>conda update conda Solving environment: failed '>>>>>>>>>>>>>>>>Error Report>>>>>>>>>>>>>>>>>>> $ C:\Users\naseer\Anaconda3\Scripts\conda update conda environment variables: CCHZPATH=C:\CTEX\CTeX

AttributeError: 'numpy.int64' object has no attribute 'timestamp' in python 3.5 in Anaconda

不羁岁月 提交于 2019-12-24 06:47:43
问题 I am a newbie in learning Machine Learning, so following a great tutorial in YouTube. But the following code is giving me an error. I read a similar question in here, but timetuple() does not solve my case, nor any solutions from the video. Here is my code : import pandas as pd import quandl, math from datetime import datetime, date, time, timedelta import time import numpy as np from sklearn import preprocessing, cross_validation, svm from sklearn.linear_model import LinearRegression import

XGBoost installation via Anaconda 1.5.1 fails on OS X

試著忘記壹切 提交于 2019-12-24 05:55:29
问题 I have GCC installed via Homebrew using brew install gcc --without-multilib . When I tried to use pip install xgboost in Anaconda 1.5.1 on OS X El Capitan 10.11.6 and Conda 4.1.11 running Python 3.5.2, I get the following output and error: Collecting xgboost Using cached xgboost-0.6a2.tar.gz Complete output from command python setup.py egg_info: rm -f -rf build build_plugin lib bin *~ */*~ */*/*~ */*/*/*~ */*.o */*/*.o */*/*/*.o xgboost clang-omp++ -std=c++0x -Wall -O3 -msse2 -Wno-unknown

Best practices with pip and conda for consistency

强颜欢笑 提交于 2019-12-24 03:20:46
问题 I know there are a lot of questions on the coexistence and interchangeability/non-interchangeability of pip and conda . That is not my question: I know I need both for my work, I use both, and for the most part, my conda envs are a manageable mess. But here's the thing: there's many ways to install pip . I happened to get conda going first, so my pip is through anaconda/bin/pip . It is the only pip on my machine. Here are my questions: Is this sensible? Do I want my pip to be usr/bin/pip and

How to use Python Dbus bindings in Anaconda

对着背影说爱祢 提交于 2019-12-24 02:57:11
问题 I am trying to install dbus on Anaconda python environment and I am struggling. Here is the error message I am getting: e@gateway:~$ python Python 3.5.4 |Anaconda custom (64-bit)| (default, Oct 13 2017, 11:22:58) [GCC 7.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import dbus Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/e/anaconda3/lib/python3.5/site-packages/dbus/__init__.py", line 77, in <module> import dbus

Package load error in anaconda and Spyder

依然范特西╮ 提交于 2019-12-24 01:54:54
问题 I have three python 2.7 files edit in Spyder 3.1.4 in Anaconda 4.3.1 (1). TestClass.py :Just define a class import numpy as np class TestClass: def getArray(self): return np.zeros((3,4)); (2). a1.py from TestClass import *; tt=TestClass(); (3). a2.py #just a empty python file When I "runfile" "a1.py" in Spyder, a TestClass instance tt was created, and I run following code in Spyder's IPython console: tt.getArray() Out[9]: array([[ 0., 0., 0., 0.], [ 0., 0., 0., 0.], [ 0., 0., 0., 0.]]) It