Why am I getting F# error FS0039: The namespace or module 'Http' is not defined
问题 In Visual Studio 2015 and 2017, I'm trying out the Http class from several F# examples in FSharp Interactive, and I keep getting: error FS0039: The namespace or module 'Http' is not defined Here's the sample: open FSharp.Data let response = Http.RequestString("http://api.themoviedb.org/3/search/movie", silentHttpErrors = true) This is clearly due to the version of FSharp.Data. Is there a way to specify the correct version for FSharp Interactive? What version of FSharp.Data contains the Http