You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this case we are looking for `boost_python3-vc140-mt-gd-1_55.lib` which is actually an import library and not a static library, and `boost_python3-vc140-mt-gd-1_55.dll`.
8
+
9
+
decoding boost names
10
+
--------------------
11
+
vc140 - compiler
12
+
mt - multithreading
13
+
gd - runtime debugging and debug symbols
14
+
15
+
Common Problems
16
+
===============
17
+
18
+
'2to3' is not recognized
19
+
------------------------
20
+
running tests with bjam seems to fail with '2to3' is not recognized as a internal or external command...
21
+
22
+
You should have python.exe in C:\Python35 and 2to3.py in C:\Python35\Tools\Scripts.
23
+
24
+
Create a batch file called 2to3.bat in C:\Python35 and put this line in the batch file
25
+
26
+
python %~dp0Tools\Scripts\2to3.py %*
27
+
28
+
VS wants to use vc120 instead of vc140
29
+
--------------------------------------
30
+
get the error LNK1104: cannot open file 'boost-python-vc120-mt-1_55.lib' in visual studio 2015 (vc140), and the project compiler is set to the v140?
31
+
32
+
Boost 1.55 is too old to know about v140, so you need to edit boost/config/auto_link.hpp:
0 commit comments