240 发简信
IP属地:上海
  • 坑爹,第二步改了conda的配置就再也下不了东西了

    CondaHTTPError: HTTP 404 NOT FOUND for url <https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda/noarch/repodata.json>;
    Elapsed: 00:00.024033

    The remote server could not find the noarch directory for the
    requested channel with url: https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda

    As of conda 4.3, a valid channel must contain a `noarch/repodata.json` and
    associated `noarch/repodata.json.bz2` file, even if `noarch/repodata.json` is
    empty. please request that the channel administrator create
    `noarch/repodata.json` and associated `noarch/repodata.json.bz2` files.
    $ mkdir noarch
    $ echo '{}' > noarch/repodata.json
    $ bzip2 -k noarch/repodata.json

    You will need to adjust your conda configuration to proceed.
    Use `conda config --show channels` to view your configuration's current state.
    Further configuration help can be found at <https://conda.io/docs/config.html>;.

    A reportable application error has occurred. Conda has prepared the above report.
    Upload successful.

    win10 搭建theano0.7实现神经网络训练GPU加速

    目前theano已经更新到1.x的版本,但是最近在实现一个车牌号识别的课程项目时发现:http://neuralnetworksanddeeplearning.com 这个课...