Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix putty
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Feb 22, 2017
1 parent e363bb6 commit 7b78857
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _doc/sphinxdoc/source/blog/2017/2017-02-15_tf.rst
Expand Up @@ -5,10 +5,10 @@
:date: 2017-02-15
:categories: modules

`TensorFlow <https://www.tensorflow.org/>`_
`TensorFlow <https://www.tensorflow.org/>`_
is now available on Windows. You can find it
on `Unofficial Windows Binaries for Python Extension Packages <http://www.lfd.uci.edu/~gohlke/pythonlibs/>`_.
It is compiled for GPU (NVIDIA only) and CPU.
It is a dependency required for
It is a dependency required for
`edward <http://edwardlib.org/>`_ which seems to be a new and interesting package
for Bayesian statistics. The documentation is really nice.
4 changes: 2 additions & 2 deletions src/pymyinstall/installcustom/install_custom_putty.py
Expand Up @@ -47,11 +47,11 @@ def install_putty(dest_folder=".", fLOG=print, install=True, version=None):
raise NotImplementedError(
"SciTE can only be installed on Windows at the moment")

url = "http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html"
url = "http://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html"
page = download_page(url)

reg = re.compile(
"<a href=\\\"(.*latest/x86/putty.exe)\\\"><code>putty.exe</code></a>")
"<a href=\\\"(.*latest/w64/putty.exe)\\\"><code>putty.exe</code></a>")
find = reg.findall(page)
if len(find) != 1:
mes = "unable to find the file to download at {0}\nfound: {1}\npattern: {2}\nOUT:\n{3}".format(
Expand Down

0 comments on commit 7b78857

Please sign in to comment.