python calg library in windows x64 - python

when i run python in windows 7 for x64,see this
[-]calg library: http://c-algorithms.sourceforge.net
why this and how do i can??
python calg library for w3af in windows x64
any body don't konw?

I got this error when trying to set up w3af on Mac (mavericks). It turned out that pybloomfiltermmap had not installed successfully with pip. I resolved it by manually downloading that from its repository - https://github.com/axiak/pybloomfiltermmap - and installing it according to the directions (python setup.py install).

Related

Error while installing robotframework-ride

i cant able to install pip install robotframework-ride,getting error ,
ERROR: Command errored out with exit status 1:
installed robot frame work using pip and downloaded wxpython and installed at g drive in python folder for my convinence,kindly give solution friends
Because Python 3.9 is recent, some libraries, applications or modules are not compatible with it, or even tested. This is the case of RIDE that is having a Beta version compatible with Python 3.8, but not tested on Python 3.9.
The project page of RIDE is here.
About the error you found, it happened because your system is trying to build wxPython 4.0.7.post2 because there is no package for Python 3.9. Not even for version 4.1.1, exists a released package.
The project page of wxPython is here.

Installing OpenCV 3.2 with python 3.6 in windows10

I am new in computer vision.
I am trying to install the opencv library 3.2 with python 3.6 but I followed every tutorial.
However; I don't know what I've done wrong. I have installed python 3.6 amd 64 and added it to the PATH ... then I have downloaded the wheel of opencv 3.2 for python 3.6 amd 64 then try to install it using pip.
However, it says that isn't supported in this platform. So, I don't know what to do now. I'm trying to avoid the CMake ... stuff because I find it tough!!!
The error mentioned in the prompt
Pip checks whether name of a wheel contains platform specific words Eg.
ad3‑2.0.2‑cp27‑cp27m‑win32.whl
(python 2.7, windows 32-bit/x86) if I install it on python 3.6 it say it isn't supported on this platform but if I change wheel's name it trys to install it. Chceck which pip are you really using. You can't use x64 wheels on x86 interpreter. Some unofficial wheels for windows platform you can find here: http://www.lfd.uci.edu/~gohlke/pythonlibs/

numpy installation on windows 7

I have Python 2.7.9 installed on Windows 7. When I try to install numpy package through pip or by downloading numpy.zip and running python setup.py install, I get various errors containing absence of various libraries. Is it possible to install numpy on Windows for 64-bit Python?
Have you tried these questions/answers?
https://stackoverflow.com/a/28947511/3412545
https://stackoverflow.com/a/4554296/3412545
Installing numpy, matplotlib on windows 7 64 bit
Otherwise, try another distribution link and report back the results here.
EDIT: Found good installation notes for posterity including plugin versions for python 2.7.9
https://code.google.com/p/pythonxy/wiki/StandardPlugins

PyCrypto install by copying 'lib' folder on Windows7 64bit

I'm trying to install PyCrypto 2.4.1 on my local machine (Windows 7 64bit).
But, I got following messages on 'python setup.py install'.
running install
running build
running build_py
running build_ext
warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath.
building 'Crypto.Random.OSRNG.winrandom' extension
error: Unable to find vcvarsall.bat
What I want to ask is this: can I just copy lib folder which contains Crypto folder in it to where my app is located? I'm developing a Google AppEngine app using Python27 runtime, and, I just need local library for PyCrypto.
Actually, I just needed some compiled version of PyCrypto for Windows 64bit.
PyCrypto version: 2.3.1
Python version: 2.7.1
Target platform: Windows 64bit
And, I could get one from here. And, this is a direct download link.
Thanks, everyone!
Did a bit of research for you, and here's the bug that was filed for the SDK:
http://code.google.com/p/googleappengine/issues/detail?id=2493
Summary of the issue:
GAE has a customized version of PyCrypto 2.0.1 installed. Docs can be found here.
SDK does not include the PyCrypto implementation from GAE, so it needs to be installed locally. However, the default path for installation is blocked by the SDK. Solution recommended in the bug comments is to install PyCrypto in each app's directory. Steps are outlined in the bug comments (not trivial).
Hope this helps!
EDIT: This one could be helpful as well: http://code.google.com/p/googleappengine/issues/detail?id=1627
You don't need to do any of this, just install from the PyCrypto binaries
Alternatively, simply download and install ActivePython-2.7.2.5-win64-x64.msi (or ActivePython-2.7.2.5-win32-x86.msi for Win32) then run pypm install pycrypto

Is there an M2Crypto installer for Windows 7 64-bit?

Is there an M2Crypto Windows installer for Python 2.7 64-bit? If not is there a reason why one cannot be built?
M2Crypto-0.21.1.win-amd64-py2.7 is available as part of the ActivePython Business Edition. M2Crypto is easy to build from the source distribution using Visual Studio 2008 but there are legal reasons why the binaries cannot be freely distributed.
You can try my Windows 64 build for Python 2.7:
http://brabenec.net/misc/packages/M2Crypto-0.21.1.win-amd64-py2.7.exe
http://brabenec.net/misc/packages/M2Crypto-0.21.1-py2.7-win-amd64.egg
Install via pip: pip install M2CryptoWin64 (for 64-bit Win) or pip install M2CryptoWin32 (for 32-bit). See this blog
It needs to install openssl-1.0.1b to get rid of issue
ImportError: DLL load failed: The specified module could not be found.

Categories