Skip to content

Commit e28d44d

Browse files
committed
Fix username in URLs
1 parent 8381734 commit e28d44d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python OpenCV module for AWS Lambda
22

3-
This is a simple script that build a deployement package including OpenCV compatible with the AWS Lambda Python runtime. The dynamic library is compiled with all extended instruction sets supported by Lambda CPU and binaries are stripped to save space. You simply need to add your code inside *lambda_funcion.py* and possibly your haar cascades files or additional Python modules. You can download directly a [pre-built archive](https://github.com/Plastic-1/aws-lambda-python-opencv/archive/prebuilt.zip).
3+
This is a simple script that build a deployment package including OpenCV compatible with the AWS Lambda Python runtime. The dynamic library is compiled with all extended instruction sets supported by Lambda CPU and binaries are stripped to save space. You simply need to add your code inside *lambda_funcion.py* and possibly your haar cascades files or additional Python modules. You can download directly a [pre-built archive](https://github.com/aeddi/aws-lambda-python-opencv/releases/download/Prebuilt/aws-lambda-python-opencv-prebuilt.zip).
44

55
- Build duration: ~20 min on T2.micro / ~15 min on C4.2xlarge
66
- Package size without haar cascades included: 26MB
@@ -10,7 +10,7 @@ This is a simple script that build a deployement package including OpenCV compat
1010

1111
## Module building
1212
### Option 1: with an existing instance
13-
- Download the repo `wget https://github.com/Plastic-1/aws-lambda-python-opencv/archive/master.zip`
13+
- Download the repo `wget https://github.com/aeddi/aws-lambda-python-opencv/archive/master.zip`
1414
- Unzip the archive `unzip master.zip`
1515
- Launch the script `cd aws-lambda-python-opencv-master && ./build.sh`
1616

@@ -26,7 +26,7 @@ yum update -y
2626
yum install -y git cmake gcc-c++ gcc python-devel chrpath
2727

2828
cd /tmp
29-
wget https://github.com/Plastic-1/aws-lambda-python-opencv/archive/master.zip
29+
wget https://github.com/aeddi/aws-lambda-python-opencv/archive/master.zip
3030
unzip master.zip
3131
chmod 777 aws-lambda-python-opencv-master
3232
cd aws-lambda-python-opencv-master

0 commit comments

Comments
 (0)