FSharp.Interop.PythonProvider icon indicating copy to clipboard operation
FSharp.Interop.PythonProvider copied to clipboard

Provider does not work in 64-bit FSI

Open jdh30 opened this issue 12 years ago • 2 comments

Only works from 32-bit. In Visual Studio, you might have to set Options->Tools->F# Tools->FSI 64-bit to false.

We need to work out how to fix this...

jdh30 avatar Dec 16 '13 14:12 jdh30

Do we want to have default or user always has to set it explicitly?

type Python = PythonProvider<"sys, math"> //default to 32 for example

or

type Platform = x86 = 0 | x64 = 1
type Python = PythonProvider<"sys, math", Platform.x86> 

What's a good name for this parameter? "Platform" is not too intuitive.

dmitry-a-morozov avatar Jan 31 '14 18:01 dmitry-a-morozov

Is this an issue having to do with running in-process with 32-bit visual studio? It seems to me that you would almost always want 64-bit.

Rickasaurus avatar May 02 '14 23:05 Rickasaurus