Questions tagged with Developer Tools
Content language: English
Sort by most recent
My name is Mike and I seek help.
Our family has created several Alexa skills - all the same type… ask “alexa, ask <skill name>” and she uses a random number to get a random line from a text file in lambda and then speaks the response.
Our skills are listed at - http://vanvooren.us/Alexa/VanVooren_Alexa_Skills.html.
I want to update some of the things in the text file that Alexa reads from… and I have no clue where to go any more.
I remember logging into the Lambda Console (https://us-east-1.console.aws.amazon.com/console/home?nc2=h_ct®ion=us-east-1&src=header-signin#?) and seeing a list of our skills, and I’d click one and I could edit the text.
Do you know where I need to go to edit the text files in the lambda console - where to log in? where to click after we log in?
Thanks,
Mike
I have installed SQL Developer sqldeveloper-22.2.1.234.1810-x64 with JDK. After the installation is complete, when I started the SQL Developer, I get a black screen. It asked me to download MSVCR100.dll and copy it to the bin dir. I have a 64-bit machine. Pls help
I am trying to make the chime video recording using aws sdk.
I couldn't find the class - CompositedVideoArtifactsConfiguration
https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/chimesdkmediapipelines/model/ArtifactsConfiguration.html
Also I couldn't find the startMediaConcatenation API in chime client.
I added the below lines in gradle
implementation(platform("software.amazon.awssdk:bom:2.19.5"))
implementation("software.amazon.awssdk:chime")
Any insights on this will be super helpful.
Assuming I have a team of 20 developers using Cloud9, and that I wish to host the Cloud9 developer environments on AWS, therefore selecting EC2 instances.
In that case, will we need 20 EC2 instances, one for each Cloud9 developer?
Or is there a way of sharing a single EC2 instance by multiple developers?
Are there ways of running Cloud9 envs on AWS other than on EC2 instances?
Any other ideas how cost may be optimized for a large team of Cloud9 developers?
Thanks,
Julius
We built java/kotlin based lambda functions with function urls to make them as a service and invoke it using REST api. We used cdk to infra code. Thought we test the entire logic using unit tests, but multiple times, we need to run the code inside lambda to actually test with the existing environment.
Are there anyway to run the lambda locally and make it to connect to dynamo db from dev environment/aws account ?
I find few options using sam command to run lambda locally. We are using cdk, will the same sam command work ?
On my cloudshell instance, I did a 'sudo yum install kbd', which allowed me to use a command line tool called 'showkey'. This command line tool echos the key presses that it detects.
Running it via 'showkey -a', so that I could use ctrl-d to exit from it, when I press the 'ctrl-k' key combination, to my bafflement, it echos that I just pressed the ctrl-L key instead!
As a comparison, running 'showkey' on my local Ubuntu machine, it correctly showed that I pressed the 'ctrl-K' key.
Why does this matter? Because I use ctrl-K to edit command lines. It typically maps to the Gnu readline's 'kill-line' (functioning as a kill to end of line).
BTW, I've noticed this same bug/issue appearing on my Cloud9 environment as well, when I open up a terminal from within Cloud9.
Is there a way to get alerted on Security Vulnerabilities related to Cloud and application Development? so that as a service provider we could start fixing the code accordingly or even intimating clients upfront on global security issues.
I usually check the security bulletin once in a while, but the challenge is there are plenty of updates everyday, which makes it hard to read everything.
https://aws.amazon.com/security/security-bulletins/?card-body.sort-by=item.additionalFields.bulletinId&card-body.sort-order=desc&awsf.bulletins-flag=*all&awsf.bulletins-year=year%232022
Is there any specific cloud service that provides such alerts?
We are building a cloud native architecture with React Frontend on S3, API Gateway, Microservices on Lamba functions and necessary AWS services. API Gateway to fulfill the cross-cutting concerns and to act as a BFF.
My question is about the mapping between the API Gateway and Microservices. There are 3 microservices (let say order, customer, payment) built on Java Spring.
1. Should I need to create equivalent API's (https proxy) in API gateway to connect to the microservices?
2. If so, should I need to create 3 API resources with 2 endpoint methods (let say get, post) in API gateway to map all the 3 microservices? so 3 API's with 6 methods in total?
3. If so, should I need to create a microservice per API method (let say get, post) so 6 microservices in total?
4. When comes to microservice that's also a Rest service which means list of Resources and methods again. In that case, 3 Microservices with (3 Resources X each 2 Methods) - 6 methods in total?
5. So, I could visualize one to many mapping between API methods in API gateway and Microservice methods like 6 X 6 combinations? I agree microservice should not be actions based but creating a few CRUD actions is planned for now.
6. For cross-cutting concerns (auth, logging etc.), should we define separate API resources in API Gateway? then no microservices required in that case.
I read a lot about API Gateway and Microservices but I could not get a clear understanding on the best practices around creating the API end points when it comes to integration with microservices. Please shed some light. Thanks.
Hello. We need to implement LBS service in the app. Not the whole maps service, just LBS.
In the documentation https://docs.aws.amazon.com/location/latest/developerguide/tutorial-maplibre-ios.html we see how to use Amazon maps. But we don't need to replace the whole maps service, we need only to replace the LBS service. I mean we need the service where we send the information about cell towers and receive the device location. And this function exactly I don’t see in your documentation. Please tell if you have this LBS service and where we can find documentation on it. And also we need to know the prices for LBS requests exactly. Anomg your prices we haven't found pricing for LBS.
I have an application in Electron that does facial recognition of people to then decide whether or not they can enter the place and for that I'm using [Amazon Rekognition][1].
Everything was working fine (for a few months) until, two days ago, a customer reported to me that the app was behaving strangely, like it wasn't responding to requests for facial recognition.
After several tests, I discovered that what is happening with it is a timeout error, which occurs in all API calls, whether they are looking for faces ([SearchFacesByImage][2]) or registering new faces ([IndexFaces][3]).
The error says:
```
{
"message": "connect ETIMEDOUT 3.226.60.54:443",
"errno": -4039,
"code": "TimeoutError",
"syscall": "connect",
"address": "3.226.60.54",
"port": 443,
"time": "2022-12-14T13:50:10.909Z",
"region": "us-east-1",
"hostname": "rekognition.us-east-1.amazonaws.com",
"retryable": true
}
```
What intrigued me was the fact that everything was working fine, until this behavior just started happening (and I didn't make any code changes/updates to the app running on my client's computer).
And what makes me even more intrigued is that this behavior occurs completely randomly and only on the machine of that client in question. Sometimes the API calls work correctly (returning whether the person was recognized or not), but most of the time, the calls take about 90 seconds to return the timeout error. When executing the same code on my machine (same methods and same CollectionId) everything runs normally and there was no timeout error at any time - while at the exact same moment on my client's machine the behavior continues.
I was using [aws-sdk][4] and then switched to [@aws-sdk/client-rekognition][5] (thinking that could solve the problem) but the code only worked on a few of the first calls to the API and a few minutes later it got the timeout errors again.
The code I'm using to configure and make calls to Rekognition is basically this:
const { RekognitionClient, IndexFacesCommand, SearchFacesByImageCommand } = require('@aws-sdk/client-rekognition')
const rekognitionClient = new RekognitionClient({
credentials: {
accessKeyId: 'accessKeyId',
secretAccessKey: 'secretAccessKey'
},
region: 'us-east-1'
})
const registerFaceOnRekognition = async (bytes, userId) => {
const params = {
CollectionId: 'collectionId',
Image: { Bytes: bytes },
ExternalImageId: userId,
MaxFaces: 1,
QualityFilter: 'HIGH'
}
const command = new IndexFacesCommand(params)
try {
const { FaceRecords } = await rekognitionClient.send(command)
if (!FaceRecords.length) {
console.log('No faces detected.')
return
}
console.log('Face created:')
console.log(FaceRecords[0].Face.FaceId)
} catch (error) {
console.error(error) // timeout error
}
}
const searchFaceByImageOnRekognition = async (bytes) => {
const params = {
CollectionId: 'collectionId',
Image: { Bytes: bytes },
MaxFaces: 1,
FaceMatchThreshold: 99,
QualityFilter: 'HIGH'
}
const command = new SearchFacesByImageCommand(params)
try {
const { FaceMatches } = await rekognitionClient.send(command)
if (!FaceMatches.length) {
console.log('This face has not been registered yet')
return
}
console.log('Face found:')
console.log(FaceMatches[0].Face.ExternalImageId)
} catch (error) {
console.error(error) // timeout error
}
}
// Method called through the renderer process that has a canvas where the webcam view is reproduced
const onTakePicture = (event, data) => {
const bytes = Buffer.from(data.dataURL.replace('data:image/jpeg;base64,', ''), 'base64')
// If there is a userId, register the face in the image
if (data.userId) {
registerFaceOnRekognition(bytes, data.userId)
return
}
// Else, search for the face in the image
searchFaceByImageOnRekognition(bytes)
}
Just remembering that: during all tests on my client's computer the internet connection was stable and working properly.
What is the best way to investigate and resolve this issue?
[1]: https://aws.amazon.com/rekognition/
[2]: https://docs.aws.amazon.com/rekognition/latest/APIReference/API_SearchFacesByImage.html
[3]: https://docs.aws.amazon.com/rekognition/latest/APIReference/API_IndexFaces.html
[4]: https://www.npmjs.com/package/aws-sdk
[5]: https://www.npmjs.com/package/@aws-sdk/client-rekognition
Hey
this is a follow up to [this questions](https://repost.aws/questions/QUXlyde8wCTByqM1R3bYQ8vQ/trying-to-use-flutter-github-action-in-code-catalyst-doesnt-work) in regards to [this flutter github action](https://github.com/marketplace/actions/flutter-action).
I was able to get the action to start but unfortunately I have problems when trying to execute the action itself - also "flutter doctor -v" already shows some problems:
```
2022-12-13T19:15:23.9710291Z flutter doctor -v
2022-12-13T19:15:23.9725521Z env:
2022-12-13T19:15:23.9725758Z AWS_REGION: us-west-2
2022-12-13T19:15:23.9725785Z FLUTTER_ROOT: /codeaws/output/src2962/src/s3/05/_layout/_work/_temp/flutter/--
2022-12-13T19:15:23.9725829Z PUB_CACHE: /codeaws/output/src2962/src/s3/05/_layout/_work/_temp/flutter/--/.pub-cache
2022-12-13T19:15:23.9866833Z fatal: detected dubious ownership in repository at '/codeaws/output/src2962/src/s3/05/_layout/_work/_temp/flutter/--'
2022-12-13T19:15:23.9867401Z To add an exception for this directory, call:
2022-12-13T19:15:23.9867629Z
2022-12-13T19:15:23.9867746Z git config --global --add safe.directory /codeaws/output/src2962/src/s3/05/_layout/_work/_temp/flutter/--
2022-12-13T19:15:24.6222666Z Failed to find the latest git commit date: VersionCheckError: Command exited with code 128: git -c log.showSignature=false log HEAD -n 1 --pretty=format:%ad --date=iso
2022-12-13T19:15:24.6223375Z Standard out:
2022-12-13T19:15:24.6223600Z Standard error: fatal: detected dubious ownership in repository at '/codeaws/output/src2962/src/s3/05/_layout/_work/_temp/flutter/--'
2022-12-13T19:15:24.6223925Z To add an exception for this directory, call:
2022-12-13T19:15:24.6223950Z
2022-12-13T19:15:24.6225927Z git config --global --add safe.directory /codeaws/output/src2962/src/s3/05/_layout/_work/_temp/flutter/--
2022-12-13T19:15:24.6226125Z
2022-12-13T19:15:24.6234942Z Returning 1970-01-01 00:00:00.000 instead.
2022-12-13T19:15:24.6853166Z [!] Flutter (Channel unknown, 0.0.0-unknown, on Amazon Linux 2 4.14.294-220.533.amzn2.x86_64, locale en_US)
2022-12-13T19:15:24.6860063Z ! Flutter version 0.0.0-unknown on channel unknown at /codeaws/output/src2962/src/s3/05/_layout/_work/_temp/flutter/--
2022-12-13T19:15:24.6861636Z ! Upstream repository unknown
2022-12-13T19:15:24.6870761Z • Framework revision (), 1970-01-01 00:00:00.000
2022-12-13T19:15:24.6871789Z • Engine revision 8f2221fbef
2022-12-13T19:15:24.6872793Z • Dart version 2.18.5
2022-12-13T19:15:24.6873838Z • DevTools version 2.15.0
2022-12-13T19:15:24.6881196Z
2022-12-13T19:15:24.6898511Z [✗] Android toolchain - develop for Android devices
2022-12-13T19:15:24.6902322Z ✗ Unable to locate Android SDK.
2022-12-13T19:15:24.6903028Z Install Android Studio from: https://developer.android.com/studio/index.html
2022-12-13T19:15:24.6903751Z On first launch it will assist you in installing the Android SDK components.
2022-12-13T19:15:24.6904443Z (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions).
2022-12-13T19:15:24.6905084Z If the Android SDK has been installed to a custom location, please use
2022-12-13T19:15:24.6905725Z `flutter config --android-sdk` to update to that location.
2022-12-13T19:15:24.6906232Z
2022-12-13T19:15:24.6906679Z
2022-12-13T19:15:24.6935664Z [✗] Chrome - develop for the web (Cannot find Chrome executable at google-chrome)
2022-12-13T19:15:24.6936228Z ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.
2022-12-13T19:15:24.6945638Z
2022-12-13T19:15:24.9954237Z [✗] Linux toolchain - develop for Linux desktop
2022-12-13T19:15:24.9957487Z ✗ clang++ is required for Linux development.
2022-12-13T19:15:24.9960160Z It is likely available from your distribution (e.g.: apt install clang), or can be downloaded from https://releases.llvm.org/
2022-12-13T19:15:24.9962794Z ✗ CMake is required for Linux development.
2022-12-13T19:15:24.9964979Z It is likely available from your distribution (e.g.: apt install cmake), or can be downloaded from https://cmake.org/download/
2022-12-13T19:15:24.9967433Z ✗ ninja is required for Linux development.
2022-12-13T19:15:24.9969730Z It is likely available from your distribution (e.g.: apt install ninja-build), or can be downloaded from https://github.com/ninja-build/ninja/releases
2022-12-13T19:15:24.9972053Z • pkg-config version 0.27.1
2022-12-13T19:15:24.9974380Z ✗ pkg-config 0.29.0 or later is required.
2022-12-13T19:15:24.9977005Z ✗ GTK 3.0 development libraries are required for Linux development.
2022-12-13T19:15:24.9979171Z They are likely available from your distribution (e.g.: apt install libgtk-3-dev)
2022-12-13T19:15:24.9981203Z
2022-12-13T19:15:24.9986727Z [!] Android Studio (not installed)
2022-12-13T19:15:24.9989611Z • Android Studio not found; download from https://developer.android.com/studio/index.html
2022-12-13T19:15:24.9991805Z (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions).
2022-12-13T19:15:24.9993670Z
2022-12-13T19:15:24.9997047Z [✓] Connected device (1 available)
2022-12-13T19:15:24.9999607Z • Linux (desktop) • linux • linux-x64 • Amazon Linux 2 4.14.294-220.533.amzn2.x86_64
2022-12-13T19:15:25.0001489Z
2022-12-13T19:15:26.5702082Z [✓] HTTP Host Availability
2022-12-13T19:15:26.5705018Z • All required HTTP hosts are available
2022-12-13T19:15:26.5707412Z
2022-12-13T19:15:26.5708789Z ! Doctor found issues in 5 categories.
```
The biggest problem here is `Failed to find the latest git commit date: VersionCheckError: Command exited with code 128` which actually then results in inresolvable dependencies during "flutter pub get".
Anyone got an idea on how to workaround this problem?
Regards
Johannes
Hi all,
just trying to use AWS IoT Core on my Mango Pi board (riscv64 architecture). To do so, I need awscrt, among others.
There is no precompiled binary for this architecture and the build fails with
```
~/crt/aws-lc/generated-src/linux-riscv64/crypto: No such file or directory
```
So I wonder whether someone tried this platform before and may share some thoughts/ideas.
Thanks, Jaroslav
full listing follows, just in case I am doing something stupid:
```
pi@nezha:~$ python3 -m pip install awscrt
Defaulting to user installation because normal site-packages is not writeable
Collecting awscrt
Using cached awscrt-0.16.1.tar.gz (21.8 MB)
Preparing metadata (setup.py) ... done
Building wheels for collected packages: awscrt
Building wheel for awscrt (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [161 lines of output]
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-riscv64-3.10
creating build/lib.linux-riscv64-3.10/awscrt
copying awscrt/websocket.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/s3.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/mqtt5.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/mqtt.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/io.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/http.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/exceptions.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/crypto.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/common.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/checksums.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/auth.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/_test.py -> build/lib.linux-riscv64-3.10/awscrt
copying awscrt/__init__.py -> build/lib.linux-riscv64-3.10/awscrt
creating build/lib.linux-riscv64-3.10/awscrt/eventstream
copying awscrt/eventstream/rpc.py -> build/lib.linux-riscv64-3.10/awscrt/eventstream
copying awscrt/eventstream/__init__.py -> build/lib.linux-riscv64-3.10/awscrt/eventstream
running build_ext
> /usr/bin/cmake -H/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/crt -Bbuild/temp.linux-riscv64-3.10/deps -DCMAKE_INSTALL_PREFIX=build/temp.linux-riscv64-3.10/deps/install -DCMAKE_BUILD_TYPE=RelWithDebInfo
-- The C compiler identification is GNU 11.3.0
-- The CXX compiler identification is GNU 11.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
pkgconfig not found. Disabling unwind tests.
-- Go not found. Disabling some code generation and using pre-generated code in generated-src/
-- Perl not found. Disabling some code generation and using pre-generated code in generated-src/
-- Run check_run file_to_test 'memcmp_invalid_stripped_check.c', flag_to_set 'MEMCMP_INVALID_STRIPPED', and compile_flags '-O2 -g -DNDEBUG'.
-- Test stdalign_check.c passed, enabling AWS_LC_STDALIGN_AVAILABLE
-- Test builtin_swap_check.c passed, enabling AWS_LC_BUILTIN_SWAP_SUPPORTED
-- The ASM compiler identification is GNU
-- Found assembler: /usr/bin/cc
Copying platform assembly files from /tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/crt/aws-lc/generated-src/linux-riscv64/crypto/ to /tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/build/temp.linux-riscv64-3.10/deps/aws-lc/crypto
CMake Error at aws-lc/crypto/CMakeLists.txt:135 (file):
file COPY cannot find
"/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/crt/aws-lc/generated-src/linux-riscv64/crypto/":
No such file or directory.
-- Detected CMAKE_SYSTEM_PROCESSOR as riscv64
-- Detected 64-Bit system
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
-- madvise() support detected
-- clone() support detected
-- S2N found target: crypto
-- CMake 3.22.1
CMake Deprecation Warning at aws-c-common/CMakeLists.txt:17 (cmake_policy):
The OLD behavior for policy CMP0077 will be removed from a future version
of CMake.
The cmake-policies(7) manual explains that the OLD behaviors of all
policies are deprecated and that a policy should be set to OLD only under
specific short-term circumstances. Projects should be ported to the NEW
behavior and not rely on setting a policy to OLD.
-- Performing Test AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS
-- Performing Test AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS - Success
-- Performing Test AWS_HAVE_MSVC_MULX
-- Performing Test AWS_HAVE_MSVC_MULX - Failed
-- Performing Test AWS_HAVE_WINAPI_DESKTOP
-- Performing Test AWS_HAVE_WINAPI_DESKTOP - Failed
-- Performing Test AWS_ARCH_INTEL
-- Performing Test AWS_ARCH_INTEL - Failed
-- Performing Test AWS_ARCH_ARM64
-- Performing Test AWS_ARCH_ARM64 - Failed
-- Performing Test AWS_ARCH_ARM32
-- Performing Test AWS_ARCH_ARM32 - Failed
-- Performing Test AWS_HAVE_GCC_INLINE_ASM
-- Performing Test AWS_HAVE_GCC_INLINE_ASM - Success
-- Performing Test AWS_HAVE_AUXV
-- Performing Test AWS_HAVE_AUXV - Success
-- Performing Test AWS_HAVE_EXECINFO
-- Performing Test AWS_HAVE_EXECINFO - Failed
-- Performing Test AWS_HAVE_LINUX_IF_LINK_H
-- Performing Test AWS_HAVE_LINUX_IF_LINK_H - Success
-- Performing Test HAVE_M_AVX2_FLAG
-- Performing Test HAVE_M_AVX2_FLAG - Failed
-- Performing Test HAVE_AVX2_INTRINSICS
-- Performing Test HAVE_AVX2_INTRINSICS - Failed
-- Performing Test HAVE_MM256_EXTRACT_EPI64
-- Performing Test HAVE_MM256_EXTRACT_EPI64 - Failed
-- Looking for pthread_mutexattr_init
-- Looking for pthread_mutexattr_init - not found
-- Performing Test HAS_FPIC_FLAG
-- Performing Test HAS_FPIC_FLAG - Success
-- Performing Test HAS_64BIT_FILE_OFFSET_BY_DEFAULT
-- Performing Test HAS_64BIT_FILE_OFFSET_BY_DEFAULT - Success
-- Looking for fseeko
-- Looking for fseeko - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stdbool.h
-- Looking for stdbool.h - found
-- Performing Test HAS_WGNU
-- Performing Test HAS_WGNU - Failed
-- Performing Test HAVE_SYSCONF
-- Performing Test HAVE_SYSCONF - Success
-- Looking for pthread_attr_setaffinity_np
-- Looking for pthread_attr_setaffinity_np - found
-- Performing Test PTHREAD_SETNAME_TAKES_2ARGS
-- Performing Test PTHREAD_SETNAME_TAKES_2ARGS - Success
-- Performing Test HAS_SANITIZERS
-- Performing Test HAS_SANITIZERS - Failed
-- Packaging currently only supported on Fedora.
-- Using libcrypto from AWS-LC
-- Configuring incomplete, errors occurred!
See also "/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/build/temp.linux-riscv64-3.10/deps/CMakeFiles/CMakeOutput.log".
See also "/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/build/temp.linux-riscv64-3.10/deps/CMakeFiles/CMakeError.log".
Traceback (most recent call last):
File "<string>", line 2, in <module>
File "<pip-setuptools-caller>", line 34, in <module>
File "/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/setup.py", line 348, in <module>
setuptools.setup(
File "/usr/lib/python3/dist-packages/setuptools/__init__.py", line 153, in setup
return distutils.core.setup(**attrs)
File "/usr/lib/python3.10/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib/python3.10/distutils/dist.py", line 966, in run_commands
self.run_command(cmd)
File "/usr/lib/python3.10/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/usr/lib/python3/dist-packages/wheel/bdist_wheel.py", line 299, in run
self.run_command('build')
File "/usr/lib/python3.10/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.10/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/usr/lib/python3.10/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/usr/lib/python3.10/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.10/distutils/dist.py", line 985, in run_command
cmd_obj.run()
File "/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/setup.py", line 255, in run
self._build_dependencies(dep_build_dir, dep_install_path)
File "/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/setup.py", line 247, in _build_dependencies
self._build_dependencies_impl(build_dir, install_path)
File "/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/setup.py", line 195, in _build_dependencies_impl
run_cmd(cmake_args)
File "/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/setup.py", line 37, in run_cmd
subprocess.check_call(args)
File "/usr/lib/python3.10/subprocess.py", line 369, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/bin/cmake', '-H/tmp/pip-install-qsvx9kyw/awscrt_19c9b5f13b6e44febba6335902605ce9/crt', '-Bbuild/temp.linux-riscv64-3.10/deps', '-DCMAKE_INSTALL_PREFIX=build/temp.linux-riscv64-3.10/deps/install', '-DCMAKE_BUILD_TYPE=RelWithDebInfo']' returned non-zero exit status 1.
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for awscrt
Running setup.py clean for awscrt
Failed to build awscrt
```