Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Building wheel for multidict (pyproject.toml) ... error

Hi there,

I am following the tutorial to build my first demo bot using the symphony-bdk-python .
When I get to the step : \BotProject>pip3 install -r requirements.txt
The installation process runs into the below error:

Building wheel for multidict (pyproject.toml) ... error
error: subprocess-exited-with-error

× Building wheel for multidict (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [59 lines of output]
*********************
* Accelerated build *

file

Then the below error:

 running build_ext
  building 'multidict._multidict' extension
  error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": https://visualstudio.microsoft.com/visual-cpp-build-tools/
  [end of output]

note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for multidict
Building wheel for yarl (pyproject.toml) ... error
error: subprocess-exited-with-error

× Building wheel for yarl (pyproject.toml) did not run successfully.
│ exit code: 1
╰─> [37 lines of output]

An as a result  symphony-bdk-python is not installed.

Can you please point me to a possible solution.

I am using Python 3.11 in Visual Studio

Thanks

  
  
Posted 4 months ago
Edited 5 days ago
  
  

Hi thanks for the post. Looking at the error it could be one of two issues.

  1. Firstly it could be that your using an outdated version of pip3. So you could try updating that and trying again.
    pip3 install --upgrade pip

  2. Second. It could well be that you need to update your version of Microsoft Visual C++ using the link above.
    https://visualstudio.microsoft.com/visual-cpp-build-tools/

Vinay Mistry   4 months ago Report
Votes Newest

Answers

357 Views
1 Answer
4 months ago
5 days ago
Tags